home *** CD-ROM | disk | FTP | other *** search
/ CyberMycha 2008 January / Cybermycha 1_2008.iso / Data.cab / _EF5A29921E3D495CA4B4C001B079181B < prev    next >
Encoding:
Text File  |  2005-08-12  |  591 b   |  32 lines

  1.  
  2. shader()
  3. {
  4.     cull("none")
  5.     sortweight("translucent14")
  6.  
  7.     stream("color", 0)
  8.  
  9.     pass()
  10.     {
  11.       vertexshader("pointsprite.vsh")
  12.         tmu()
  13.         {
  14.             texture()
  15.             {
  16.                 image("Piece2.dds")
  17.                 addressfunc("clamp", "clamp", "clamp")
  18.             }
  19.  
  20.             colorop("mul", "texture", "diffuse", "current")
  21.             alphaop("mul", "texture", "diffuse", "current")
  22.         }
  23.  
  24.         blendfunc("src_alpha", "inv_src_alpha")
  25.         depthfunc("lequal", 0)
  26.  
  27.         depthbias(%zbias, %zsbias)
  28.     }
  29. }
  30.  
  31.  
  32.